home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / prog / lvswin.zip / WINTOOLS.HPP < prev   
C/C++ Source or Header  |  1991-10-17  |  929b  |  36 lines

  1. /*
  2.  *            LVS Windows
  3.  *      The Window Class System
  4.  *
  5.  *        Copyright 1991 (c), Lake View Software
  6.  *                            4321 Harborough Rd.
  7.  *                            Columbus, OH 43220
  8.  *        All rights reserved.
  9.  */
  10. // WinTools.hpp
  11.  
  12. #ifndef WINTOOLS_HPP
  13. #define WINTOOLS_HPP
  14.  
  15. #include "winobj.hpp"
  16.  
  17. void Win_Calculator ();
  18.  
  19. void Win_Calc_colors (int win_attr = _GREEN|BLACK, int bor_attr = _GREEN|WHITE);
  20.  
  21. void Win_Calendar ();
  22.  
  23. char *Win_File_Pick (char *file_spec, int win_attr = _CYAN|WHITE,
  24.         int bor_attr = _CYAN|BLACK );
  25.  
  26. void Win_Error (char *msg = "Error", int win_attr = _RED|BLACK,
  27.         int bor_attr = _RED|WHITE);
  28.  
  29. char Win_Get_Choice (char *msg, char *choices, int win_attr = _GREEN|BLACK,
  30.         int bor_attr = _GREEN|WHITE);
  31.  
  32. int Win_Get_YN (char *msg = "Yes or No", int winattr = _GREEN|BLACK, 
  33.     int borattr = _GREEN|BLACK);
  34.  
  35. #endif     /* WinTools.Hpp */
  36.